class ElementConfigItem extends Object
Modifier and Type | Field and Description |
---|---|
private String |
_end
Mapping between end tag and LaTeX command.
|
private boolean |
_ignoreContent
The element's content will be ignored.
|
private boolean |
_ignoreStyles
The element's CSS style will be ignored.
|
private boolean |
_leaveText
The element's content mustn't be touched.
|
private String |
_start
Mapping between start tag and LaTeX command.
|
Constructor and Description |
---|
ElementConfigItem(String start,
String end,
String leaveText,
String ignoreContent,
String ignoreStyles)
Cstr.
|
Modifier and Type | Method and Description |
---|---|
String |
getEnd()
Returns mapping between end tag and LaTeX command.
|
String |
getStart()
Returns mapping between start tag and LaTeX command.
|
boolean |
ignoreContent()
Returns ignoreContent property.
|
boolean |
ignoreStyles()
Returns ignoreStyles property.
|
boolean |
leaveText()
Returns leaveText property.
|
private String _start
b
tag).private String _end
b
tag).private boolean _leaveText
pre
)private boolean _ignoreContent
script
)private boolean _ignoreStyles
public ElementConfigItem(String start, String end, String leaveText, String ignoreContent, String ignoreStyles)
start
- mapping between start tag and LaTeX commandend
- mapping between end tag and LaTeX commandleaveText
- "yes" if the element's content mustn't be touchedignoreContent
- "yes" if the element's content will be ignoredignoreStyles
- "yes" if the element's CSS styles will be ignoredpublic String getStart()
public String getEnd()
public boolean leaveText()
public boolean ignoreContent()
public boolean ignoreStyles()